import { Button } from '@/components/ui/button'; import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuTrigger, } from '@/components/ui/dropdown-menu'; import { ChevronDown } from 'lucide-react'; import type { Address } from 'viem'; import { BurnButton } from './burn-form/button'; import type { StableCoin } from './data'; import { MintButton } from './mint-form/button'; import { PauseButton } from './pause-form/button'; import { UpdateCollateralButton } from './update-collateral-form/button'; export function ManageDropdown({ id, stableCoin }: { id: Address; stableCoin: StableCoin }) { const collateralAvailable = Number(stableCoin?.collateral ?? 0) - Number(stableCoin?.totalSupply ?? 0); return ( 0 ? (stableCoin.holders[0].value ?? 0) : 0)} /> ); }